In Python, __init__() method inside a class is its constructor. Any method or variable that begins with double underscore is by default private. Python defines several standard private methods which have a special meaning, and __init__() is one of them. S